home *** CD-ROM | disk | FTP | other *** search
/ Technotools / Technotools (Chestnut CD-ROM)(1993).ISO / lang_c / csounds / nicebeep.c next >
Text File  |  1988-08-18  |  100b  |  8 lines

  1. void nice_beep(void)
  2. {
  3.   sound(880);
  4.   delay(50);
  5.   sound(699);
  6.   delay(550);
  7.   nosound();
  8. }